(Called when starting a new game, as well as a couple seconds after resetting)

8F/803C: 8B           PHB 
8F/803D: A2 78 B6     LDX #$B678
8F/8040: A0 26 0A     LDY #$0A26
8F/8043: A9 93 00     LDA #$0093
8F/8046: 54 8E 8E     MVN $8E,$8E    (transfer 94h bytes from 8E/B678 to 8E/0A26 [aka 7E/0A26])
8F/8049: F4 7E 7E     PEA $7E7E
8F/804C: AB           PLB 
8F/804D: AB           PLB            (Data Bank = 7Eh)
8F/804E: A9 00 01     LDA #$0100
8F/8051: 8D 07 0B     STA $0B07      (Dog attack = Level 1:0)
8F/8054: A9 00 01     LDA #$0100     (will set weapon level to 1, and advancement
                                      within level to 0)
8F/8057: 8D DD 0A     STA $0ADD      (bare hands [you can't ever fight with them] = Level 1:0)
8F/805A: 8D DF 0A     STA $0ADF      (Bone Crusher = Level 1:0)
8F/805D: 8D E1 0A     STA $0AE1      (Gladiator Sword = Level 1:0)
8F/8060: 8D E3 0A     STA $0AE3      (Crusader Sword = Level 1:0)
8F/8063: 8D E5 0A     STA $0AE5      (Neutron Blade = Level 1:0)
8F/8066: 8D E7 0A     STA $0AE7      (Spider's Claw = Level 1:0)
8F/8069: 8D E9 0A     STA $0AE9      (Bronze Axe = Level 1:0)
8F/806C: 8D EB 0A     STA $0AEB      (Knight Basher = Level 1:0)
8F/806F: 8D ED 0A     STA $0AED      (Atom Smasher = Level 1:0)
8F/8072: 8D EF 0A     STA $0AEF      (Horn Spear = Level 1:0)
8F/8075: 8D F1 0A     STA $0AF1      (Bronze Spear = Level 1:0)
8F/8078: 8D F3 0A     STA $0AF3      (Lance = Level 1:0)
8F/807B: 8D F5 0A     STA $0AF5      (Laser Lance = Level 1:0)
                                     (oops, what about the Bazooka?  leaving it at its
                                      default of 0 causes bugs with the computer-controlled
                                      character and with Energize.)
8F/807E: 9C BA 0A     STZ $0ABA      (blank currently equipped weapon)
8F/8081: 9C 34 14     STZ $1434
8F/8084: 9C 63 23     STZ $2363      (clear Dog state)
8F/8087: 9C BC 0A     STZ $0ABC
8F/808A: 9C BC 0A     STZ $0ABC      (exsqueeze me?)
8F/808D: A9 02 00     LDA #$0002
8F/8090: 8D 43 24     STA $2443
8F/8093: A9 02 00     LDA #$0002
8F/8096: 8D 41 24     STA $2441      (flag Bone Crusher to be added to inventory)
8F/8099: 22 10 92 8F  JSR $8F9210    (add or remove Charm or rare item from inventory, and
                                      add or remove weapon from inventory)
8F/809D: 22 6B 94 8F  JSR $8F946B

[...]
